home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / patches / ip20t21a.lha / IFX20to21a_Patch / Patches2.lha / Rexx / AutoFX / CineMatte.ifx next >
Text File  |  1995-04-20  |  1KB  |  48 lines

  1. /*
  2.  * CineMatte.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * AutoFX script to run the CineMatte hook.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. base  = 'Autofx_CineMatte_'
  22.  
  23. framenum = Word(Arg(1),1)
  24. mainname = Word(Arg(1),2)
  25. swapname = Word(Arg(1),3)
  26. seqnum   = Word(Arg(1),4)
  27. framemax = Word(Arg(1),5)
  28.  
  29. colors = GETCLIP(base||'Colors')
  30. output = GETCLIP(base||'Output')
  31. drange = GETCLIP(base||'DRange')
  32. darken = GETCLIP(base||'Darken')
  33. lighten = GETCLIP(base||'Lighten')
  34.  
  35. IF colors = 0 THEN colors = 'BlueScreen'
  36. ELSE IF colors = 1 THEN colors = 'GreenScreen'
  37.  
  38. IF output = 0 THEN output = 'OutputMatte'
  39. ELSE IF output = 1 THEN output = 'OutputComposite'
  40. ELSE IF output = 2 THEN output = 'OutputBoth'
  41.  
  42. IF drange = 0 THEN drange = ''
  43. ELSE IF drange = 1 THEN drange = 'DynamicRange'
  44.  
  45. Hook CineMatte colors output drange 'Darken' darken 'Brighten' lighten
  46.  
  47. EXIT
  48.